projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9542081
)
(error): Doc fix.
author
Richard M. Stallman
<rms@gnu.org>
Thu, 4 Jan 1996 19:00:38 +0000
(19:00 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Thu, 4 Jan 1996 19:00:38 +0000
(19:00 +0000)
lisp/subr.el
patch
|
blob
|
history
diff --git
a/lisp/subr.el
b/lisp/subr.el
index f73a29ad11bda24f3ac0d9c3d15a09c4b480cebd..f96351e6e4d68c9c859fcd1ed0016ea12b0e2260 100644
(file)
--- a/
lisp/subr.el
+++ b/
lisp/subr.el
@@
-704,7
+704,10
@@
This function accepts any number of arguments, but ignores them."
nil)
(defun error (&rest args)
- "Signal an error, making error message by passing all args to `format'."
+ "Signal an error, making error message by passing all args to `format'.
+In Emacs, the convention is that error messages start with a capital
+letter but *do not* end with a period. Please follow this convention
+for the sake of consistency."
(while t
(signal 'error (list (apply 'format args)))))